home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / AMICUS / AMIBEST2.ADF / Best of AMICUS 2 / C / SkinnyC / ReadMe.DOC < prev    next >
Text File  |  1987-07-22  |  773b  |  23 lines

  1.  
  2.  
  3. Table 1.  A Simplified Description of an Executable Object File Resulting From the "Standard" Compile and Link of a Simple Lattice C program.
  4.  
  5.  
  6. Origin    Description
  7.  
  8. c.o        The first part of the file contains an assembly
  9.         language routine startup, which calls _main().  This
  10.         module also contains the routine _exit().
  11.  
  12. your.o    This is your compiled C program.  It supplies main()
  13.         and any other functions you've defined for use by
  14.         your "main" program.
  15.  
  16. lc.lib    Any external references in the modules above which
  17.         could be satisfied from the object library lc.lib are
  18.         inserted here.  This includes the function _main()
  19.         which startup calls, and exit() which your program
  20.         calls.
  21.  
  22. amiga.lib    Any externals still not satisfied by lc.lib are pulled
  23.         in from this library.